home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / language / dino / dino_bot.1 / source / shell2 / dino2.init.example < prev    next >
Encoding:
Text File  |  1991-05-14  |  1.8 KB  |  52 lines

  1.  
  2. # Copyright, 1990, Regents of the University of Colorado
  3. #
  4. #  This is a Bourne shell script that initializes the "dino2"
  5. #  script for your particular machine(s).  You must set up this
  6. #  script properly, plus there must be one bourne shell script
  7. #  with the name "dino2.<mach>" for each machine named "<mach>".
  8. #  Do not put any initialization or custom code in the "dino2"
  9. #  script, as it may be replaced in an update.
  10. #
  11.  
  12. #
  13. #  Insert the full path for the DINO home directory here
  14. #
  15. # (On our iPSC2, this is the dino home directory.)
  16. #
  17. Dhome=/usr/research/dino
  18.  
  19. #
  20. #  Insert default values for the first parameters to dino2
  21. #  (These values will be used only if dino2 is called using
  22. #  just file names, i.e. called directly by the programmer).
  23. #
  24. # Set "Quiet" to "F" if you want DINO to print out informational
  25. # messages about what it is doing while "dino2" executes.  Set it
  26. # to "T" otherwise.
  27. #
  28. # Set "Destination" to the name of the parallel machine (the name
  29. # that DINO uses).  If there is more than one virtual machine on
  30. # the real parallel machine, you will have to pick one as a default.
  31. #
  32. # Set "SuffixModel" to either "new" or "old" depending on which
  33. # suffix model you support as the default.  See section 7.1.4 of
  34. # the DINO User's Manual for more discussion on suffix models.
  35. #
  36. # If "SuffixModel" is "new", set "Suffix" to be the same as
  37. # "Destination".  If "SuffixModel" is "old", set this to be the same as
  38. # the default suffix defined in the "dino" script for this machine.
  39. # If you did not define a default suffix for the old suffix model,
  40. # DINO uses "D1" for the iPSC1, "D2" for the iPSC2, "D8" for the
  41. # i860, "S1" for the iPSC1 simulator, "S2" for the iPSC2 simulator,
  42. # and "G" for the distributed sun machine.
  43. #
  44. # You do not need to export these variables.  They are only used
  45. # within the "dino2" script.
  46. #
  47. Quiet=F
  48. Destination=bud
  49. SuffixModel=new
  50. Suffix=bud
  51.  
  52.